home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / Implementation / Dialogs / DdgDefs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  1.8 KB  |  66 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        DdgDefs.h
  3.     (should be called DlgDefs.h, but it's too expensive to change it now.)
  4.  
  5.     Contains:    Common .r defines for Dialogs library resources
  6.  
  7.     Owned by:    Eric House
  8.  
  9.     Copyright:    © 1996 by Apple Computer, Inc., all rights reserved.
  10.  
  11.     Change History (most recent first):
  12.  
  13.          <5>     10/4/96    CSL        1334277: Added AboutBox resource IDs
  14.          <4>     9/12/96    eeh        1386008: weak link against appleguidelib
  15.          <3>     9/11/96    eeh        1386008: AG fix for 68K
  16.          <2>     9/10/96    eeh        1386008: AppleGuide support (incomplete)
  17.          <0>     6/7/96    eeh        first checked in
  18.  
  19.     To Do:
  20.     In Progress:
  21. */
  22.  
  23. #ifndef _DLGDEFS_
  24. #define _DLGDEFS_
  25.  
  26. #define kQuestionMarkicsID 130
  27. #define kAppleGuideButton 500
  28.  
  29. #define kAGControlWidth 16
  30.  
  31. #define kAGButtonCDEFId 11
  32.  
  33. // until we figure out how to link to AppleGuide on 68K, we just turn
  34. // it off. (It's on now.)
  35. #define _APPLEGUIDE_READY_
  36.  
  37. #define kODDialogRsrcBase 300        // same as imaging should be fine for Dialogs lib,
  38.                                     // as imaging has no dialogs or other resources
  39.                                     // likely to be moved here
  40.  
  41. #define kODShellGuideFilenameStrings    (kODDialogRsrcBase+0)
  42. #define kODShellGuideFolderNameIndex    1
  43. #define kODShellGuideFileNameIndex        2
  44.  
  45. #define kODShellGuideSearchIndices    (kODDialogRsrcBase+1)
  46. #define kODShellGuideStringIndexPartFrame    1
  47. #define kODShellGuideStringIndexDocument    2
  48. #define kODShellGuideStringIndexMainDraft    3
  49. #define kODShellGuideStringIndexDraftCreate    4
  50. #define kODShellGuideStringIndexPasteAs        5
  51. #define kODShellGuideStringIndexLinkSource    6
  52. #define kODShellGuideStringIndexLinkDest    7
  53. #define kODShellGuideStringIndexSize        8
  54.  
  55.  
  56. // About Box defines
  57.  
  58. #define    kODDlgAboutBoxDLOGID            (kODDialogRsrcBase + 2)
  59. #define kODDlgAboutBoxDefaultPICTID        (kODDialogRsrcBase + 3)
  60. #define kODDlgAboutBoxBWPICTID            (kODDialogRsrcBase + 4)
  61. #define kODDlgAboutBox16GrayPICTID        (kODDialogRsrcBase + 5)
  62. #define kODDlgAboutBoxBestPICTID        (kODDialogRsrcBase + 6)
  63.  
  64.  
  65. #endif
  66.